In this game, players try to memorize a sequence as it grows longer and longer and longer. Tap on the "Start Game" button to begin. Wait and the game will show you the first move. Tap that box. The game will then show you the first and second move. Tap those boxes. Each time the sequence grows longer. Watch the text box. It will tell you what to do next.
For example, in playSequence, the sequence plays with timed pauses including a delay before prompting the user to begin.
function playSequence(i) { eval("parent.JCcolor"+sequence.substring(i,i+1)+".flash()") if ((i+1) < sequence.length) SeqTimeOutID = window.setTimeout('playSequence('+(i+1)+')',1000) else SeqTimeOutID = window.setTimeout( 'document.forms[0].gameStatus.value="Now you try it..."', 1000) }